home *** CD-ROM | disk | FTP | other *** search
/ Reverse Code Engineering RCE CD +sandman 2000 / ReverseCodeEngineeringRceCdsandman2000.iso / RCE / Tools / TASM V5 / WAP32.PAK / MAKEFILE next >
Encoding:
Text File  |  1996-02-21  |  616 b   |  31 lines

  1. #   Make file for Turbo Assembler WAP32 example.
  2. #   Copyright (c) 1996 by Borland International, Inc.
  3.  
  4. #       make -B                 Will build wap32.exe
  5. #       make -B -DDEBUG         Will build the debug version of wap32.exe
  6.  
  7. NAME = WAP32
  8. OBJS = $(NAME).obj
  9. DEF  = $(NAME).def
  10.  
  11. !if $d(DEBUG)
  12. TASMDEBUG=/zi
  13. LINKDEBUG=/v
  14. !else
  15. TASMDEBUG=
  16. LINKDEBUG=
  17. !endif
  18.  
  19. !if $d(MAKEDIR)
  20. IMPORT=$(MAKEDIR)\..\lib\import32
  21. !else
  22. IMPORT=import32
  23. !endif
  24.  
  25.  
  26. $(NAME).EXE: $(OBJS) $(DEF)
  27.   tlink32 /Tpe /aa /c $(LINKDEBUG) $(OBJS),$(NAME),, $(IMPORT), $(DEF)
  28.  
  29. .asm.obj:
  30.    tasm32 $(TASMDEBUG) /ml $&.asm
  31.